body{
    margin: 0;
    padding-top: 120px;
    background-color: #18191a;
    font-family: Arial, Helvetica, sans-serif;
    object-fit: cover;
}
.messenger{
    display: flex;
    flex: 1;
    justify-content: space-between;
    padding: 4px 8px;
    align-items: center;
}
.message-profile-info{
    display: flex;
}
.back-button{
    border: none;
    align-items: center;
    height: 50px;
    background-color: transparent;
    cursor: pointer;
}
.back-button img{
    height: 30px;
}
main{
    display: flex;
    flex-direction: column;
    position: relative;
}
.sender-dp{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}
.sender-profile-picture img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.dp-name{
    margin: 0;
    color: white;
    font-size: 19px;
}
.sender-dp button{
    margin-top: 8px;
    border-radius: 4px;
    border: none;
    padding: 8px 15px;
    background-color: #3a3b3c;
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}
.sender-dp:hover button{
    background-color: gray;
}
.message-encryption{
    background-color: #3a3b3c;
    border-radius: 20px;
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding: 4px 10px;
}
.message-encryption img{
    height: 11px;
    padding-right: 6px;
}
.message-encryption p{
    margin: 0;
    font-size: 12px;
    color: white;
}
.option-profile{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 90px;
}
.option{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 8px;
    margin: 10px 8px;
}
.option button{
    background-color: #3a3b3c;
    padding: 12px;
    border: none;
    border-radius: 40px;
    margin-bottom: 4px;
}
.option img{
    height: 22px;
}
.option p{
    color: white;
    margin: 0;
    font-size: 12px;
    text-wrap: nowrap;
}
.actions{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 14px;
}
.action{
    margin: 0;
    color: white;
    font-size: 13px;
}
.actions div{
    display: flex;
    padding: 6px 0;
    align-items: center;
}
.actions button{
    background-color: #3a3b3c;
    padding: 9px 10px;
    border: none;
    border-radius: 50px;
    margin-right: 5px;
    align-items: center;
}
.actions button img{
    height: 18px;
}
.action-name{
    color: rgb(226, 222, 222);
    margin: 0;
}
.status{
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
}
.action-button{
    display: flex;
}
.action-button-name{
    width: 50px;
    display: flex;
}
.reports{
    display: flex;
    align-items: center;
}
.report-icon{
    height: 32px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #3a3b3c;
    margin-right: 4px;
}
.report-icon img{
    height: 24px;
}
.report{
    display: flex;
    flex-direction: column;
    margin: 0;
}
.conversation{
    margin: 0;
    font-size: 12px;
    color: rgb(215, 210, 210);
}
.report-name{
    color: rgb(215, 210, 210);
    margin: 0;
    font-size: 15px;
}
.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid black;
    display: flex;
    align-items: center;
    background-color: #3a3b3c;
    justify-content: space-between;
}
.footer p{
    margin: 0;
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.footer button{
    background-color: grey;
    border: none;
    padding: 6px 13px;
    border-radius: 20px;
    cursor: pointer;
}
.footer div{
    padding: 10px 8px;
}
.footer a{
    text-decoration: none;
}
@media (min-width:1000px){
    body, .footer{
        width: 600px;
        border: 2px solid grey;
        border-radius: 2px;
        margin-left: 32%;
    }
    body{
        background-color: rgb(233, 231, 231);
    }
    main{
        background-color: #18191a;
        height: 780px;
    }
}